home *** CD-ROM | disk | FTP | other *** search
/ Freelog 119 / FreelogNo119-MarsAvril2014.iso / Securite / Malwarebytes Anti-Malware / mbam-setup-1.75.0.1300.exe / {app} / Chameleon / chameleon.chm / js / jquery.blockui.js < prev    next >
Text File  |  2012-03-03  |  16KB  |  502 lines

  1. /*!
  2.  * jQuery blockUI plugin
  3.  * Version 2.39 (23-MAY-2011)
  4.  * @requires jQuery v1.2.3 or later
  5.  *
  6.  * Examples at: http://malsup.com/jquery/block/
  7.  * Copyright (c) 2007-2010 M. Alsup
  8.  * Dual licensed under the MIT and GPL licenses:
  9.  * http://www.opensource.org/licenses/mit-license.php
  10.  * http://www.gnu.org/licenses/gpl.html
  11.  *
  12.  * Thanks to Amir-Hossein Sobhi for some excellent contributions!
  13.  */
  14.  
  15. ;(function($) {
  16.  
  17. if (/1\.(0|1|2)\.(0|1|2)/.test($.fn.jquery) || /^1.1/.test($.fn.jquery)) {
  18.     alert('blockUI requires jQuery v1.2.3 or later!  You are using v' + $.fn.jquery);
  19.     return;
  20. }
  21.  
  22. $.fn._fadeIn = $.fn.fadeIn;
  23.  
  24. var noOp = function() {};
  25.  
  26. // this bit is to ensure we don't call setExpression when we shouldn't (with extra muscle to handle
  27. // retarded userAgent strings on Vista)
  28. var mode = document.documentMode || 0;
  29. var setExpr = $.browser.msie && (($.browser.version < 8 && !mode) || mode < 8);
  30. var ie6 = $.browser.msie && /MSIE 6.0/.test(navigator.userAgent) && !mode;
  31.  
  32. // global $ methods for blocking/unblocking the entire page
  33. $.blockUI   = function(opts) { install(window, opts); };
  34. $.unblockUI = function(opts) { remove(window, opts); };
  35.  
  36. // convenience method for quick growl-like notifications  (http://www.google.com/search?q=growl)
  37. $.growlUI = function(title, message, timeout, onClose) {
  38.     var $m = $('<div class="growlUI"></div>');
  39.     if (title) $m.append('<h1>'+title+'</h1>');
  40.     if (message) $m.append('<h2>'+message+'</h2>');
  41.     if (timeout == undefined) timeout = 3000;
  42.     $.blockUI({
  43.         message: $m, fadeIn: 700, fadeOut: 1000, centerY: false,
  44.         timeout: timeout, showOverlay: false,
  45.         onUnblock: onClose, 
  46.         css: $.blockUI.defaults.growlCSS
  47.     });
  48. };
  49.  
  50. // plugin method for blocking element content
  51. $.fn.block = function(opts) {
  52.     return this.unblock({ fadeOut: 0 }).each(function() {
  53.         if ($.css(this,'position') == 'static')
  54.             this.style.position = 'relative';
  55.         if ($.browser.msie)
  56.             this.style.zoom = 1; // force 'hasLayout'
  57.         install(this, opts);
  58.     });
  59. };
  60.  
  61. // plugin method for unblocking element content
  62. $.fn.unblock = function(opts) {
  63.     return this.each(function() {
  64.         remove(this, opts);
  65.     });
  66. };
  67.  
  68. $.blockUI.version = 2.39; // 2nd generation blocking at no extra cost!
  69.  
  70. // override these in your code to change the default behavior and style
  71. $.blockUI.defaults = {
  72.     // message displayed when blocking (use null for no message)
  73.     message:  '<h1>Please wait...</h1>',
  74.  
  75.     title: null,      // title string; only used when theme == true
  76.     draggable: true,  // only used when theme == true (requires jquery-ui.js to be loaded)
  77.     
  78.     theme: false, // set to true to use with jQuery UI themes
  79.     
  80.     // styles for the message when blocking; if you wish to disable
  81.     // these and use an external stylesheet then do this in your code:
  82.     // $.blockUI.defaults.css = {};
  83.     css: {
  84.         padding:    0,
  85.         margin:        0,
  86.         width:        '30%',
  87.         top:        '40%',
  88.         left:        '35%',
  89.         textAlign:    'center',
  90.         color:        '#000',
  91.         'min-height':    '2em',
  92.         border:        '3px solid #aaa',
  93.         'padding-top':  '15px',
  94.         backgroundColor:'#fff',
  95.         cursor:        'wait'
  96.     },
  97.     
  98.     // minimal style set used when themes are used
  99.     themedCSS: {
  100.         width:    '30%',
  101.         top:    '40%',
  102.         left:    '35%'
  103.     },
  104.  
  105.     // styles for the overlay
  106.     overlayCSS:  {
  107.         backgroundColor: '#000',
  108.         opacity:           0.6,
  109.         cursor:               'wait'
  110.     },
  111.  
  112.     // styles applied when using $.growlUI
  113.     growlCSS: {
  114.         width:      '350px',
  115.         top:        '10px',
  116.         left:       '',
  117.         right:      '10px',
  118.         border:     'none',
  119.         padding:    '5px',
  120.         opacity:    0.6,
  121.         cursor:     'default',
  122.         color:        '#fff',
  123.         backgroundColor: '#000',
  124.         '-webkit-border-radius': '10px',
  125.         '-moz-border-radius':     '10px',
  126.         'border-radius':          '10px'
  127.     },
  128.     
  129.     // IE issues: 'about:blank' fails on HTTPS and javascript:false is s-l-o-w
  130.     // (hat tip to Jorge H. N. de Vasconcelos)
  131.     iframeSrc: /^https/i.test(window.location.href || '') ? 'javascript:false' : 'about:blank',
  132.  
  133.     // force usage of iframe in non-IE browsers (handy for blocking applets)
  134.     forceIframe: false,
  135.  
  136.     // z-index for the blocking overlay
  137.     baseZ: 1000,
  138.  
  139.     // set these to true to have the message automatically centered
  140.     centerX: true, // <-- only effects element blocking (page block controlled via css above)
  141.     centerY: true,
  142.  
  143.     // allow body element to be stetched in ie6; this makes blocking look better
  144.     // on "short" pages.  disable if you wish to prevent changes to the body height
  145.     allowBodyStretch: true,
  146.  
  147.     // enable if you want key and mouse events to be disabled for content that is blocked
  148.     bindEvents: true,
  149.  
  150.     // be default blockUI will supress tab navigation from leaving blocking content
  151.     // (if bindEvents is true)
  152.     constrainTabKey: true,
  153.  
  154.     // fadeIn time in millis; set to 0 to disable fadeIn on block
  155.     fadeIn:  200,
  156.  
  157.     // fadeOut time in millis; set to 0 to disable fadeOut on unblock
  158.     fadeOut:  400,
  159.  
  160.     // time in millis to wait before auto-unblocking; set to 0 to disable auto-unblock
  161.     timeout: 0,
  162.  
  163.     // disable if you don't want to show the overlay
  164.     showOverlay: true,
  165.  
  166.     // if true, focus will be placed in the first available input field when
  167.     // page blocking
  168.     focusInput: true,
  169.  
  170.     // suppresses the use of overlay styles on FF/Linux (due to performance issues with opacity)
  171.     applyPlatformOpacityRules: true,
  172.     
  173.     // callback method invoked when fadeIn has completed and blocking message is visible
  174.     onBlock: null,
  175.  
  176.     // callback method invoked when unblocking has completed; the callback is
  177.     // passed the element that has been unblocked (which is the window object for page
  178.     // blocks) and the options that were passed to the unblock call:
  179.     //     onUnblock(element, options)
  180.     onUnblock: null,
  181.  
  182.     // don't ask; if you really must know: http://groups.google.com/group/jquery-en/browse_thread/thread/36640a8730503595/2f6a79a77a78e493#2f6a79a77a78e493
  183.     quirksmodeOffsetHack: 4,
  184.  
  185.     // class name of the message block
  186.     blockMsgClass: 'blockMsg'
  187. };
  188.  
  189. // private data and functions follow...
  190.  
  191. var pageBlock = null;
  192. var pageBlockEls = [];
  193.  
  194. function install(el, opts) {
  195.     var full = (el == window);
  196.     var msg = opts && opts.message !== undefined ? opts.message : undefined;
  197.     opts = $.extend({}, $.blockUI.defaults, opts || {});
  198.     opts.overlayCSS = $.extend({}, $.blockUI.defaults.overlayCSS, opts.overlayCSS || {});
  199.     var css = $.extend({}, $.blockUI.defaults.css, opts.css || {});
  200.     var themedCSS = $.extend({}, $.blockUI.defaults.themedCSS, opts.themedCSS || {});
  201.     msg = msg === undefined ? opts.message : msg;
  202.  
  203.     // remove the current block (if there is one)
  204.     if (full && pageBlock)
  205.         remove(window, {fadeOut:0});
  206.  
  207.     // if an existing element is being used as the blocking content then we capture
  208.     // its current place in the DOM (and current display style) so we can restore
  209.     // it when we unblock
  210.     if (msg && typeof msg != 'string' && (msg.parentNode || msg.jquery)) {
  211.         var node = msg.jquery ? msg[0] : msg;
  212.         var data = {};
  213.         $(el).data('blockUI.history', data);
  214.         data.el = node;
  215.         data.parent = node.parentNode;
  216.         data.display = node.style.display;
  217.         data.position = node.style.position;
  218.         if (data.parent)
  219.             data.parent.removeChild(node);
  220.     }
  221.  
  222.     $(el).data('blockUI.onUnblock', opts.onUnblock);
  223.     var z = opts.baseZ;
  224.  
  225.     // blockUI uses 3 layers for blocking, for simplicity they are all used on every platform;
  226.     // layer1 is the iframe layer which is used to supress bleed through of underlying content
  227.     // layer2 is the overlay layer which has opacity and a wait cursor (by default)
  228.     // layer3 is the message content that is displayed while blocking
  229.  
  230.     var lyr1 = ($.browser.msie || opts.forceIframe) 
  231.         ? $('<iframe class="blockUI" style="z-index:'+ (z++) +';display:none;border:none;margin:0;padding:0;position:absolute;width:100%;height:100%;top:0;left:0" src="'+opts.iframeSrc+'"></iframe>')
  232.         : $('<div class="blockUI" style="display:none"></div>');
  233.     
  234.     var lyr2 = opts.theme 
  235.          ? $('<div class="blockUI blockOverlay ui-widget-overlay" style="z-index:'+ (z++) +';display:none"></div>')
  236.          : $('<div class="blockUI blockOverlay" style="z-index:'+ (z++) +';display:none;border:none;margin:0;padding:0;width:100%;height:100%;top:0;left:0"></div>');
  237.  
  238.     var lyr3, s;
  239.     if (opts.theme && full) {
  240.         s = '<div class="blockUI ' + opts.blockMsgClass + ' blockPage ui-dialog ui-widget ui-corner-all" style="z-index:'+(z+10)+';display:none;position:fixed">' +
  241.                 '<div class="ui-widget-header ui-dialog-titlebar ui-corner-all blockTitle">'+(opts.title || ' ')+'</div>' +
  242.                 '<div class="ui-widget-content ui-dialog-content"></div>' +
  243.             '</div>';
  244.     }
  245.     else if (opts.theme) {
  246.         s = '<div class="blockUI ' + opts.blockMsgClass + ' blockElement ui-dialog ui-widget ui-corner-all" style="z-index:'+(z+10)+';display:none;position:absolute">' +
  247.                 '<div class="ui-widget-header ui-dialog-titlebar ui-corner-all blockTitle">'+(opts.title || ' ')+'</div>' +
  248.                 '<div class="ui-widget-content ui-dialog-content"></div>' +
  249.             '</div>';
  250.     }
  251.     else if (full) {
  252.         s = '<div class="blockUI ' + opts.blockMsgClass + ' blockPage" style="z-index:'+(z+10)+';display:none;position:fixed"></div>';
  253.     }             
  254.     else {
  255.         s = '<div class="blockUI ' + opts.blockMsgClass + ' blockElement" style="z-index:'+(z+10)+';display:none;position:absolute"></div>';
  256.     }
  257.     lyr3 = $(s);
  258.  
  259.     // if we have a message, style it
  260.     if (msg) {
  261.         if (opts.theme) {
  262.             lyr3.css(themedCSS);
  263.             lyr3.addClass('ui-widget-content');
  264.         }
  265.         else 
  266.             lyr3.css(css);
  267.     }
  268.  
  269.     // style the overlay
  270.     if (!opts.theme && (!opts.applyPlatformOpacityRules || !($.browser.mozilla && /Linux/.test(navigator.platform))))
  271.         lyr2.css(opts.overlayCSS);
  272.     lyr2.css('position', full ? 'fixed' : 'absolute');
  273.  
  274.     // make iframe layer transparent in IE
  275.     if ($.browser.msie || opts.forceIframe)
  276.         lyr1.css('opacity',0.0);
  277.  
  278.     //$([lyr1[0],lyr2[0],lyr3[0]]).appendTo(full ? 'body' : el);
  279.     var layers = [lyr1,lyr2,lyr3], $par = full ? $('body') : $(el);
  280.     $.each(layers, function() {
  281.         this.appendTo($par);
  282.     });
  283.     
  284.     if (opts.theme && opts.draggable && $.fn.draggable) {
  285.         lyr3.draggable({
  286.             handle: '.ui-dialog-titlebar',
  287.             cancel: 'li'
  288.         });
  289.     }
  290.  
  291.     // ie7 must use absolute positioning in quirks mode and to account for activex issues (when scrolling)
  292.     var expr = setExpr && (!$.boxModel || $('object,embed', full ? null : el).length > 0);
  293.     if (ie6 || expr) {
  294.         // give body 100% height
  295.         if (full && opts.allowBodyStretch && $.boxModel)
  296.             $('html,body').css('height','100%');
  297.  
  298.         // fix ie6 issue when blocked element has a border width
  299.         if ((ie6 || !$.boxModel) && !full) {
  300.             var t = sz(el,'borderTopWidth'), l = sz(el,'borderLeftWidth');
  301.             var fixT = t ? '(0 - '+t+')' : 0;
  302.             var fixL = l ? '(0 - '+l+')' : 0;
  303.         }
  304.  
  305.         // simulate fixed position
  306.         $.each([lyr1,lyr2,lyr3], function(i,o) {
  307.             var s = o[0].style;
  308.             s.position = 'absolute';
  309.             if (i < 2) {
  310.                 full ? s.setExpression('height','Math.max(document.body.scrollHeight, document.body.offsetHeight) - (jQuery.boxModel?0:'+opts.quirksmodeOffsetHack+') + "px"')
  311.                      : s.setExpression('height','this.parentNode.offsetHeight + "px"');
  312.                 full ? s.setExpression('width','jQuery.boxModel && document.documentElement.clientWidth || document.body.clientWidth + "px"')
  313.                      : s.setExpression('width','this.parentNode.offsetWidth + "px"');
  314.                 if (fixL) s.setExpression('left', fixL);
  315.                 if (fixT) s.setExpression('top', fixT);
  316.             }
  317.             else if (opts.centerY) {
  318.                 if (full) s.setExpression('top','(document.documentElement.clientHeight || document.body.clientHeight) / 2 - (this.offsetHeight / 2) + (blah = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "px"');
  319.                 s.marginTop = 0;
  320.             }
  321.             else if (!opts.centerY && full) {
  322.                 var top = (opts.css && opts.css.top) ? parseInt(opts.css.top) : 0;
  323.                 var expression = '((document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + '+top+') + "px"';
  324.                 s.setExpression('top',expression);
  325.             }
  326.         });
  327.     }
  328.  
  329.     // show the message
  330.     if (msg) {
  331.         if (opts.theme)
  332.             lyr3.find('.ui-widget-content').append(msg);
  333.         else
  334.             lyr3.append(msg);
  335.         if (msg.jquery || msg.nodeType)
  336.             $(msg).show();
  337.     }
  338.  
  339.     if (($.browser.msie || opts.forceIframe) && opts.showOverlay)
  340.         lyr1.show(); // opacity is zero
  341.     if (opts.fadeIn) {
  342.         var cb = opts.onBlock ? opts.onBlock : noOp;
  343.         var cb1 = (opts.showOverlay && !msg) ? cb : noOp;
  344.         var cb2 = msg ? cb : noOp;
  345.         if (opts.showOverlay)
  346.             lyr2._fadeIn(opts.fadeIn, cb1);
  347.         if (msg)
  348.             lyr3._fadeIn(opts.fadeIn, cb2);
  349.     }
  350.     else {
  351.         if (opts.showOverlay)
  352.             lyr2.show();
  353.         if (msg)
  354.             lyr3.show();
  355.         if (opts.onBlock)
  356.             opts.onBlock();
  357.     }
  358.  
  359.     // bind key and mouse events
  360.     bind(1, el, opts);
  361.  
  362.     if (full) {
  363.         pageBlock = lyr3[0];
  364.         pageBlockEls = $(':input:enabled:visible',pageBlock);
  365.         if (opts.focusInput)
  366.             setTimeout(focus, 20);
  367.     }
  368.     else
  369.         center(lyr3[0], opts.centerX, opts.centerY);
  370.  
  371.     if (opts.timeout) {
  372.         // auto-unblock
  373.         var to = setTimeout(function() {
  374.             full ? $.unblockUI(opts) : $(el).unblock(opts);
  375.         }, opts.timeout);
  376.         $(el).data('blockUI.timeout', to);
  377.     }
  378. };
  379.  
  380. // remove the block
  381. function remove(el, opts) {
  382.     var full = (el == window);
  383.     var $el = $(el);
  384.     var data = $el.data('blockUI.history');
  385.     var to = $el.data('blockUI.timeout');
  386.     if (to) {
  387.         clearTimeout(to);
  388.         $el.removeData('blockUI.timeout');
  389.     }
  390.     opts = $.extend({}, $.blockUI.defaults, opts || {});
  391.     bind(0, el, opts); // unbind events
  392.  
  393.     if (opts.onUnblock === null) {
  394.         opts.onUnblock = $el.data('blockUI.onUnblock');
  395.         $el.removeData('blockUI.onUnblock');
  396.     }
  397.  
  398.     var els;
  399.     if (full) // crazy selector to handle odd field errors in ie6/7
  400.         els = $('body').children().filter('.blockUI').add('body > .blockUI');
  401.     else
  402.         els = $('.blockUI', el);
  403.  
  404.     if (full)
  405.         pageBlock = pageBlockEls = null;
  406.  
  407.     if (opts.fadeOut) {
  408.         els.fadeOut(opts.fadeOut);
  409.         setTimeout(function() { reset(els,data,opts,el); }, opts.fadeOut);
  410.     }
  411.     else
  412.         reset(els, data, opts, el);
  413. };
  414.  
  415. // move blocking element back into the DOM where it started
  416. function reset(els,data,opts,el) {
  417.     els.each(function(i,o) {
  418.         // remove via DOM calls so we don't lose event handlers
  419.         if (this.parentNode)
  420.             this.parentNode.removeChild(this);
  421.     });
  422.  
  423.     if (data && data.el) {
  424.         data.el.style.display = data.display;
  425.         data.el.style.position = data.position;
  426.         if (data.parent)
  427.             data.parent.appendChild(data.el);
  428.         $(el).removeData('blockUI.history');
  429.     }
  430.  
  431.     if (typeof opts.onUnblock == 'function')
  432.         opts.onUnblock(el,opts);
  433. };
  434.  
  435. // bind/unbind the handler
  436. function bind(b, el, opts) {
  437.     var full = el == window, $el = $(el);
  438.  
  439.     // don't bother unbinding if there is nothing to unbind
  440.     if (!b && (full && !pageBlock || !full && !$el.data('blockUI.isBlocked')))
  441.         return;
  442.     if (!full)
  443.         $el.data('blockUI.isBlocked', b);
  444.  
  445.     // don't bind events when overlay is not in use or if bindEvents is false
  446.     if (!opts.bindEvents || (b && !opts.showOverlay)) 
  447.         return;
  448.  
  449.     // bind anchors and inputs for mouse and key events
  450.     var events = 'mousedown mouseup keydown keypress';
  451.     b ? $(document).bind(events, opts, handler) : $(document).unbind(events, handler);
  452.  
  453. // former impl...
  454. //       var $e = $('a,:input');
  455. //       b ? $e.bind(events, opts, handler) : $e.unbind(events, handler);
  456. };
  457.  
  458. // event handler to suppress keyboard/mouse events when blocking
  459. function handler(e) {
  460.     // allow tab navigation (conditionally)
  461.     if (e.keyCode && e.keyCode == 9) {
  462.         if (pageBlock && e.data.constrainTabKey) {
  463.             var els = pageBlockEls;
  464.             var fwd = !e.shiftKey && e.target === els[els.length-1];
  465.             var back = e.shiftKey && e.target === els[0];
  466.             if (fwd || back) {
  467.                 setTimeout(function(){focus(back)},10);
  468.                 return false;
  469.             }
  470.         }
  471.     }
  472.     var opts = e.data;
  473.     // allow events within the message content
  474.     if ($(e.target).parents('div.' + opts.blockMsgClass).length > 0)
  475.         return true;
  476.  
  477.     // allow events for content that is not being blocked
  478.     return $(e.target).parents().children().filter('div.blockUI').length == 0;
  479. };
  480.  
  481. function focus(back) {
  482.     if (!pageBlockEls)
  483.         return;
  484.     var e = pageBlockEls[back===true ? pageBlockEls.length-1 : 0];
  485.     if (e)
  486.         e.focus();
  487. };
  488.  
  489. function center(el, x, y) {
  490.     var p = el.parentNode, s = el.style;
  491.     var l = ((p.offsetWidth - el.offsetWidth)/2) - sz(p,'borderLeftWidth');
  492.     var t = ((p.offsetHeight - el.offsetHeight)/2) - sz(p,'borderTopWidth');
  493.     if (x) s.left = l > 0 ? (l+'px') : '0';
  494.     if (y) s.top  = t > 0 ? (t+'px') : '0';
  495. };
  496.  
  497. function sz(el, p) {
  498.     return parseInt($.css(el,p))||0;
  499. };
  500.  
  501. })(jQuery);
  502.